home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib1
/
v_01_04
/
1n04040b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
201 b
|
16 lines
if not (c in ['0' .. '9']) do
begin
code := i;
exit;
end;
n := ord(c) - ord('0');
c := next;
while c in ['0' .. '9'] do
begin
n := 10 * n + ord(c) - ord('0');
c := next;
end;